all:	compile

compile:	pi.c
	gcc -o pi-seq pi.c

clean:
	rm pi-seq

